【例子介绍】Delphi版FLV播放器
【相关图片】
【源码结构】带图像界面,FLV控件,源码可参考使用
flv播放器
├── LZFLVPlayer.exe
├── readme.txt
├── source
│ ├── Common
│ │ ├── UnitAppConfig.pas
│ │ ├── UnitRegExpr.pas
│ │ ├── UnitValidateData.pas
│ │ └── UnitXmlOperate.pas
│ ├── FlashOcx
│ │ ├── Flash9c.ocx
│ │ └── FlashUtil9c.exe
│ ├── Forms
│ │ ├── About
│ │ │ ├── UnitFormAbout.ddp
│ │ │ ├── UnitFormAbout.dfm
│ │ │ ├── UnitFormAbout.pas
│ │ │ ├── UnitFormAbout.~ddp
│ │ │ ├── UnitFormAbout.~dfm
│ │ │ ├── UnitFormAbout.~pas
│ │ │ └── vssver.scc
│ │ ├── Dlgs
│ │ │ ├── UnitFormAppBase.dfm
│ │ │ └── UnitFormAppBase.pas
│ │ ├── UnitFormFlvList.dfm
│ │ ├── UnitFormFlvList.pas
│ │ ├── UnitFormFlvPlay.dfm
│ │ └── UnitFormFlvPlay.pas
│ ├── LZFLVPlayer.cfg
│ ├── LZFLVPlayer.dof
│ ├── LZFLVPlayer.dpr
│ ├── LZFLVPlayer.res
│ ├── TBXVCLSkinTheme.pas
│ ├── clean.bat
│ ├── flaprj
│ │ ├── xflv
│ │ │ ├── xflv.fla
│ │ │ └── xflv.swf
│ │ └── yflv
│ │ ├── mx
│ │ │ ├── events
│ │ │ │ └── EventDispatcher.as
│ │ │ ├── utils
│ │ │ │ └── Delegate.as
│ │ │ └── video
│ │ │ ├── CuePointManager.as
│ │ │ ├── FLVPlayback.as
│ │ │ ├── INCManager.as
│ │ │ ├── NCManager.as
│ │ │ ├── SMILManager.as
│ │ │ ├── UIManager.as
│ │ │ ├── VideoError.as
│ │ │ └── VideoPlayer.as
│ │ ├── yflv.fla
│ │ ├── yflv.flp
│ │ └── yflv.swf
│ ├── history.txt
│ ├── ico.ico
│ ├── readme.txt
│ └── rmkThemes.pas
├── xflv.dll
├── xflv.swf
└── yflv.dll
13 directories, 49 files
评论